#divmod
Description: Returns the quotient and remainder of integer division.
def divmod(x, y):
'''
Returns the quotient and remainder of integer division
:param x: Dividend
:param y: Divisor
:return: A tuple of (quotient, remainder)
'''
Example:
print(divmod(233, 7))